1eef8f0897613bd03f3fa417c65a408c9b9cb88d,platform/lang-api/src/com/intellij/codeInspection/InspectionEP.java,InspectionEP,instantiateTool,#,139
Before Change
public InspectionProfileEntry instantiateTool() {
try {
return instantiate(implementationClass, ApplicationManager.getApplication().getPicoContainer());
}
catch (ClassNotFoundException e) {
throw new RuntimeException(e);
After Change
public InspectionProfileEntry instantiateTool() {
try {
final InspectionProfileEntry entry = instantiate(implementationClass, ApplicationManager.getApplication().getPicoContainer());
entry.myNameProvider = this;
return entry;
}
catch (ClassNotFoundException e) {
throw new RuntimeException(e);